home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 January & February / Amiga-CD 1997 #1-2.iso / patches / stormamiga_lib / spezialbeispiele / dhrystone / dhry_stormamiga_1.c < prev    next >
C/C++ Source or Header  |  1996-10-27  |  12KB  |  404 lines

  1. /*
  2.  ****************************************************************************
  3.  *
  4.  *                   "DHRYSTONE" Benchmark Program
  5.  *                   -----------------------------
  6.  *
  7.  *  Version:    C, Version 2.1
  8.  *
  9.  *  File:       dhry_1.c (part 2 of 3)
  10.  *
  11.  *  Date:       May 25, 1988
  12.  *
  13.  *  Author:     Reinhold P. Weicker
  14.  *
  15.  ****************************************************************************
  16.  */
  17.  
  18. #include "dhry.h"
  19.  
  20. #ifdef __STORM__
  21.     #include <stormamiga.h>
  22.     #define scanf scanf_
  23.     #define main main__
  24. #endif
  25.  
  26.  
  27. /* Global Variables: */
  28.  
  29. Rec_Pointer     Ptr_Glob,
  30.                 Next_Ptr_Glob;
  31. int             Int_Glob;
  32. Boolean         Bool_Glob;
  33. char            Ch_1_Glob,
  34.                 Ch_2_Glob;
  35. int             Arr_1_Glob [50];
  36. int             Arr_2_Glob [50] [50];
  37.  
  38. /* extern char     *malloc (); */
  39. Enumeration     Func_1 ();
  40.   /* forward declaration necessary since Enumeration may not simply be int */
  41.  
  42. #ifndef REG
  43.         Boolean Reg = false;
  44. #define REG
  45.         /* REG becomes defined as empty */
  46.         /* i.e. no register variables   */
  47. #else
  48.         Boolean Reg = true;
  49. #endif
  50.  
  51. /* variables for time measurement: */
  52.  
  53. #ifdef TIMES
  54. struct tms      time_info;
  55. /* extern  int     times (); */
  56.                 /* see library function "times" */
  57. #define Too_Small_Time (2*HZ)
  58.                 /* Measurements should last at least about 2 seconds */
  59. #endif
  60. #ifdef TIME
  61. /* extern long     time(); */
  62.                 /* see library function "time"  */
  63. #define Too_Small_Time 2
  64.                 /* Measurements should last at least 2 seconds */
  65. #endif
  66. #ifdef MSC_CLOCK
  67. extern clock_t clock();
  68. #define Too_Small_Time (2*HZ)
  69. #endif
  70.  
  71. long            Begin_Time,
  72.                 End_Time,
  73.                 User_Time;
  74. double          Microseconds,
  75.                 Dhrystones_Per_Second;
  76.  
  77. /* end of variables for time measurement */
  78.  
  79.  
  80. void main(void)
  81. /*****/
  82.  
  83.   /* main program, corresponds to procedures        */
  84.   /* Main and Proc_0 in the Ada version             */
  85. {
  86.         One_Fifty       Int_1_Loc;
  87.   REG   One_Fifty       Int_2_Loc;
  88.         One_Fifty       Int_3_Loc;
  89.   REG   char            Ch_Index;
  90.         Enumeration     Enum_Loc;
  91.         Str_30          Str_1_Loc;
  92.         Str_30          Str_2_Loc;
  93.   REG   int             Run_Index;
  94.   REG   int             Number_Of_Runs;
  95.  
  96.   /* Initializations */
  97.  
  98.   Next_Ptr_Glob = (Rec_Pointer) malloc (sizeof (Rec_Type));
  99.   Ptr_Glob = (Rec_Pointer) malloc (sizeof (Rec_Type));
  100.  
  101.   Ptr_Glob->Ptr_Comp                    = Next_Ptr_Glob;
  102.   Ptr_Glob->Discr                       = Ident_1;
  103.   Ptr_Glob->variant.var_1.Enum_Comp     = Ident_3;
  104.   Ptr_Glob->variant.var_1.Int_Comp      = 40;
  105.   strcpy (Ptr_Glob->variant.var_1.Str_Comp,
  106.           "DHRYSTONE PROGRAM, SOME STRING");
  107.   strcpy (Str_1_Loc, "DHRYSTONE PROGRAM, 1'ST STRING");
  108.  
  109.   Arr_2_Glob [8][7] = 10;
  110.         /* Was missing in published program. Without this statement,    */
  111.         /* Arr_2_Glob [8][7] would have an undefined value.             */
  112.         /* Warning: With 16-Bit processors and Number_Of_Runs > 32000,  */
  113.         /* overflow may occur for this array element.                   */
  114.  
  115.   printf ("\n");
  116.   printf ("Dhrystone Benchmark, Version 2.1 (Language: C)\n");
  117.   printf ("\n");
  118.   if (Reg)
  119.   {
  120.     printf ("Program compiled with 'register' attribute\n");
  121.     printf ("\n");
  122.   }
  123.   else
  124.   {
  125.     printf ("Program compiled without 'register' attribute\n");
  126.     printf ("\n");
  127.   }
  128.   printf ("Please give the number of runs through the benchmark: ");
  129.   {
  130.     int n;
  131.     fflush(stdout);
  132.     scanf ("%d", &n);
  133.     Number_Of_Runs = n;
  134.   }
  135.   printf ("\n");
  136.  
  137.   printf ("Execution starts, %d runs through Dhrystone\n", Number_Of_Runs);
  138.  
  139.   /***************/
  140.   /* Start timer */
  141.   /***************/
  142.  
  143. #ifdef TIMES
  144.   times (&time_info);
  145.   Begin_Time = (long) time_info.tms_utime;
  146. #endif
  147. #ifdef TIME
  148.   Begin_Time = time ( (time_t *) 0);
  149. #endif
  150. #ifdef MSC_CLOCK
  151.   Begin_Time = clock();
  152. #endif
  153.  
  154.   for (Run_Index = 1; Run_Index <= Number_Of_Runs; ++Run_Index)
  155.   {
  156.  
  157.     Proc_5();
  158.     Proc_4();
  159.       /* Ch_1_Glob == 'A', Ch_2_Glob == 'B', Bool_Glob == true */
  160.     Int_1_Loc = 2;
  161.     Int_2_Loc = 3;
  162.     strcpy (Str_2_Loc, "DHRYSTONE PROGRAM, 2'ND STRING");
  163.     Enum_Loc = Ident_2;
  164.     Bool_Glob = ! Func_2 (Str_1_Loc, Str_2_Loc);
  165.       /* Bool_Glob == 1 */
  166.     while (Int_1_Loc < Int_2_Loc)  /* loop body executed once */
  167.     {
  168.       Int_3_Loc = 5 * Int_1_Loc - Int_2_Loc;
  169.         /* Int_3_Loc == 7 */
  170.       Proc_7 (Int_1_Loc, Int_2_Loc, &Int_3_Loc);
  171.         /* Int_3_Loc == 7 */
  172.       Int_1_Loc += 1;
  173.     } /* while */
  174.       /* Int_1_Loc == 3, Int_2_Loc == 3, Int_3_Loc == 7 */
  175.     Proc_8 (Arr_1_Glob, Arr_2_Glob, Int_1_Loc, Int_3_Loc);
  176.       /* Int_Glob == 5 */
  177.     Proc_1 (Ptr_Glob);
  178.     for (Ch_Index = 'A'; Ch_Index <= Ch_2_Glob; ++Ch_Index)
  179.                              /* loop body executed twice */
  180.     {
  181.       if (Enum_Loc == Func_1 (Ch_Index, 'C'))
  182.           /* then, not executed */
  183.         {
  184.         Proc_6 (Ident_1, &Enum_Loc);
  185.         strcpy (Str_2_Loc, "DHRYSTONE PROGRAM, 3'RD STRING");
  186.         Int_2_Loc = Run_Index;
  187.         Int_Glob = Run_Index;
  188.         }
  189.     }
  190.       /* Int_1_Loc == 3, Int_2_Loc == 3, Int_3_Loc == 7 */
  191.     Int_2_Loc = Int_2_Loc * Int_1_Loc;
  192.     Int_1_Loc = Int_2_Loc / Int_3_Loc;
  193.     Int_2_Loc = 7 * (Int_2_Loc - Int_3_Loc) - Int_1_Loc;
  194.       /* Int_1_Loc == 1, Int_2_Loc == 13, Int_3_Loc == 7 */
  195.     Proc_2 (&Int_1_Loc);
  196.       /* Int_1_Loc == 5 */
  197.  
  198.   } /* loop "for Run_Index" */
  199.  
  200.   /**************/
  201.   /* Stop timer */
  202.   /**************/
  203.  
  204. #ifdef TIMES
  205.   times (&time_info);
  206.   End_Time = (long) time_info.tms_utime;
  207. #endif
  208. #ifdef TIME
  209.   End_Time = time ( (time_t *) 0);
  210. #endif
  211. #ifdef MSC_CLOCK
  212.   End_Time = clock();
  213. #endif
  214.  
  215.   printf ("Execution ends\n");
  216.   printf ("\n");
  217.   printf ("Final values of the variables used in the benchmark:\n");
  218.   printf ("\n");
  219.   printf ("Int_Glob:            %d\n", Int_Glob);
  220.   printf ("        should be:   %d\n", 5);
  221.   printf ("Bool_Glob:           %d\n", Bool_Glob);
  222.   printf ("        should be:   %d\n", 1);
  223.   printf ("Ch_1_Glob:           %c\n", Ch_1_Glob);
  224.   printf ("        should be:   %c\n", 'A');
  225.   printf ("Ch_2_Glob:           %c\n", Ch_2_Glob);
  226.   printf ("        should be:   %c\n", 'B');
  227.   printf ("Arr_1_Glob[8]:       %d\n", Arr_1_Glob[8]);
  228.   printf ("        should be:   %d\n", 7);
  229.   printf ("Arr_2_Glob[8][7]:    %d\n", Arr_2_Glob[8][7]);
  230.   printf ("        should be:   Number_Of_Runs + 10\n");
  231.   printf ("Ptr_Glob->\n");
  232.   printf ("  Ptr_Comp:          %d\n", (int) Ptr_Glob->Ptr_Comp);
  233.   printf ("        should be:   (implementation-dependent)\n");
  234.   printf ("  Discr:             %d\n", Ptr_Glob->Discr);
  235.   printf ("        should be:   %d\n", 0);
  236.   printf ("  Enum_Comp:         %d\n", Ptr_Glob->variant.var_1.Enum_Comp);
  237.   printf ("        should be:   %d\n", 2);
  238.   printf ("  Int_Comp:          %d\n", Ptr_Glob->variant.var_1.Int_Comp);
  239.   printf ("        should be:   %d\n", 17);
  240.   printf ("  Str_Comp:          %s\n", Ptr_Glob->variant.var_1.Str_Comp);
  241.   printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
  242.   printf ("Next_Ptr_Glob->\n");
  243.   printf ("  Ptr_Comp:          %d\n", (int) Next_Ptr_Glob->Ptr_Comp);
  244.   printf ("        should be:   (implementation-dependent), same as above\n");
  245.   printf ("  Discr:             %d\n", Next_Ptr_Glob->Discr);
  246.   printf ("        should be:   %d\n", 0);
  247.   printf ("  Enum_Comp:         %d\n", Next_Ptr_Glob->variant.var_1.Enum_Comp);
  248.   printf ("        should be:   %d\n", 1);
  249.   printf ("  Int_Comp:          %d\n", Next_Ptr_Glob->variant.var_1.Int_Comp);
  250.   printf ("        should be:   %d\n", 18);
  251.   printf ("  Str_Comp:          %s\n",
  252.                                 Next_Ptr_Glob->variant.var_1.Str_Comp);
  253.   printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
  254.   printf ("Int_1_Loc:           %d\n", Int_1_Loc);
  255.   printf ("        should be:   %d\n", 5);
  256.   printf ("Int_2_Loc:           %d\n", Int_2_Loc);
  257.   printf ("        should be:   %d\n", 13);
  258.   printf ("Int_3_Loc:           %d\n", Int_3_Loc);
  259.   printf ("        should be:   %d\n", 7);
  260.   printf ("Enum_Loc:            %d\n", Enum_Loc);
  261.   printf ("        should be:   %d\n", 1);
  262.   printf ("Str_1_Loc:           %s\n", Str_1_Loc);
  263.   printf ("        should be:   DHRYSTONE PROGRAM, 1'ST STRING\n");
  264.   printf ("Str_2_Loc:           %s\n", Str_2_Loc);
  265.   printf ("        should be:   DHRYSTONE PROGRAM, 2'ND STRING\n");
  266.   printf ("\n");
  267.  
  268.   User_Time = End_Time - Begin_Time;
  269.  
  270.   if (User_Time < Too_Small_Time)
  271.   {
  272.     printf ("Measured time too small to obtain meaningful results\n");
  273.     printf ("Please increase number of runs\n");
  274.     printf ("\n");
  275.   }
  276.   else
  277.   {
  278. #ifdef TIME
  279.     Microseconds = (double) User_Time * Mic_secs_Per_Second
  280.                         / (double) Number_Of_Runs;
  281.     Dhrystones_Per_Second = (double) Number_Of_Runs / (double) User_Time;
  282. #else
  283.     Microseconds = (double) User_Time * Mic_secs_Per_Second
  284.                         / ((double) HZ * ((double) Number_Of_Runs));
  285.     Dhrystones_Per_Second = ((double) HZ * (double) Number_Of_Runs)
  286.                         / (double) User_Time;
  287. #endif
  288.     printf ("Microseconds for one run through Dhrystone: ");
  289.     printf ("%6.1lf \n", Microseconds);
  290.     printf ("Dhrystones per Second:                      ");
  291.     printf ("%6.1lf \n", Dhrystones_Per_Second);
  292.     printf ("\n");
  293.   }
  294.  
  295. }
  296.  
  297.  
  298. Proc_1 (Ptr_Val_Par)
  299. /******************/
  300.  
  301. REG Rec_Pointer Ptr_Val_Par;
  302.     /* executed once */
  303. {
  304.   REG Rec_Pointer Next_Record = Ptr_Val_Par->Ptr_Comp;
  305.                                         /* == Ptr_Glob_Next */
  306.   /* Local variable, initialized with Ptr_Val_Par->Ptr_Comp,    */
  307.   /* corresponds to "rename" in Ada, "with" in Pascal           */
  308.  
  309.   structassign (*Ptr_Val_Par->Ptr_Comp, *Ptr_Glob);
  310.   Ptr_Val_Par->variant.var_1.Int_Comp = 5;
  311.   Next_Record->variant.var_1.Int_Comp
  312.         = Ptr_Val_Par->variant.var_1.Int_Comp;
  313.   Next_Record->Ptr_Comp = Ptr_Val_Par->Ptr_Comp;
  314.   Proc_3 (&Next_Record->Ptr_Comp);
  315.     /* Ptr_Val_Par->Ptr_Comp->Ptr_Comp
  316.                         == Ptr_Glob->Ptr_Comp */
  317.   if (Next_Record->Discr == Ident_1)
  318.     /* then, executed */
  319.   {
  320.     Next_Record->variant.var_1.Int_Comp = 6;
  321.     Proc_6 (Ptr_Val_Par->variant.var_1.Enum_Comp,
  322.            &Next_Record->variant.var_1.Enum_Comp);
  323.     Next_Record->Ptr_Comp = Ptr_Glob->Ptr_Comp;
  324.     Proc_7 (Next_Record->variant.var_1.Int_Comp, 10,
  325.            &Next_Record->variant.var_1.Int_Comp);
  326.   }
  327.   else /* not executed */
  328.     structassign (*Ptr_Val_Par, *Ptr_Val_Par->Ptr_Comp);
  329. } /* Proc_1 */
  330.  
  331.  
  332. Proc_2 (Int_Par_Ref)
  333. /******************/
  334.     /* executed once */
  335.     /* *Int_Par_Ref == 1, becomes 4 */
  336.  
  337. One_Fifty   *Int_Par_Ref;
  338. {
  339.   One_Fifty  Int_Loc;
  340.   Enumeration   Enum_Loc;
  341.  
  342.   Int_Loc = *Int_Par_Ref + 10;
  343.   do /* executed once */
  344.     if (Ch_1_Glob == 'A')
  345.       /* then, executed */
  346.     {
  347.       Int_Loc -= 1;
  348.       *Int_Par_Ref = Int_Loc - Int_Glob;
  349.       Enum_Loc = Ident_1;
  350.     } /* if */
  351.   while (Enum_Loc != Ident_1); /* true */
  352. } /* Proc_2 */
  353.  
  354.  
  355. Proc_3 (Ptr_Ref_Par)
  356. /******************/
  357.     /* executed once */
  358.     /* Ptr_Ref_Par becomes Ptr_Glob */
  359.  
  360. Rec_Pointer *Ptr_Ref_Par;
  361.  
  362. {
  363.   if (Ptr_Glob != Null)
  364.     /* then, executed */
  365.     *Ptr_Ref_Par = Ptr_Glob->Ptr_Comp;
  366.   Proc_7 (10, Int_Glob, &Ptr_Glob->variant.var_1.Int_Comp);
  367. } /* Proc_3 */
  368.  
  369.  
  370. Proc_4 () /* without parameters */
  371. /*******/
  372.     /* executed once */
  373. {
  374.   Boolean Bool_Loc;
  375.  
  376.   Bool_Loc = Ch_1_Glob == 'A';
  377.   Bool_Glob = Bool_Loc | Bool_Glob;
  378.   Ch_2_Glob = 'B';
  379. } /* Proc_4 */
  380.  
  381.  
  382. Proc_5 () /* without parameters */
  383. /*******/
  384.     /* executed once */
  385. {
  386.   Ch_1_Glob = 'A';
  387.   Bool_Glob = false;
  388. } /* Proc_5 */
  389.  
  390.  
  391.         /* Procedure for the assignment of structures,          */
  392.         /* if the C compiler doesn't support this feature       */
  393. #ifdef  NOSTRUCTASSIGN
  394. memcpy (d, s, l)
  395. register char   *d;
  396. register char   *s;
  397. register int    l;
  398. {
  399.         while (l--) *d++ = *s++;
  400. }
  401. #endif
  402.  
  403.  
  404.